Skip to content

Commit

Permalink
Fix for the FS#1833 parser error
Browse files Browse the repository at this point in the history
  • Loading branch information
bug committed Jul 30, 2013
1 parent 5f0edce commit 627fc03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions inc/parser/parser.php
Expand Up @@ -454,8 +454,8 @@ function Doku_Parser_Mode_table() {
}

function connectTo($mode) {
$this->Lexer->addEntryPattern('\n\^',$mode,'table');
$this->Lexer->addEntryPattern('\n\|',$mode,'table');
$this->Lexer->addEntryPattern('\s*\n\^',$mode,'table');
$this->Lexer->addEntryPattern('\s*\n\|',$mode,'table');
}

function postConnect() {
Expand Down

0 comments on commit 627fc03

Please sign in to comment.